// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.twotoasters.jazzylistview.effects; import android.view.View; import com.nineoldandroids.view.ViewHelper; import com.nineoldandroids.view.ViewPropertyAnimator; import com.twotoasters.jazzylistview.JazzyEffect; public class GrowEffect implements JazzyEffect { private static final float a = 0.01F; public GrowEffect() { } public void initView(View view, int i, int j) { ViewHelper.setPivotX(view, view.getWidth() / 2); ViewHelper.setPivotY(view, view.getHeight() / 2); ViewHelper.setScaleX(view, 0.01F); ViewHelper.setScaleY(view, 0.01F); } public void setupAnimation(View view, int i, int j, ViewPropertyAnimator viewpropertyanimator) { viewpropertyanimator.scaleX(1.0F).scaleY(1.0F); } }